Elastic color

HTML

1
<!-- content to be placed inside <body>…</body> -->

CSS

1
2
3
4
5
6
7
8
9
10
11
12
13
/**
* Elastic color
*/



html {
background: rgb(100%, 0%, 40%);
transition: 1s cubic-bezier(.25,.1,.2,3);
}

html:hover {
background: gray;
}